home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #6 / CD 6 (Black) - 2001.iso / K-CS.dcr / 00039.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  308 b   |  20 lines

  1. property Loops
  2. global BlinkObjekt
  3.  
  4. on new me
  5.   set Loops to 0
  6.   cursor(0)
  7.   set BlinkObject to 0
  8.   set the locH of sprite 99 to 780
  9.   set BlinkObjekt to new(script "Blink", 4, 80)
  10. end
  11.  
  12. on exitFrame
  13.   set Loops to Loops + 1
  14.   if Loops > 5 then
  15.     go(#next)
  16.   end if
  17.   checkBlink(BlinkObjekt)
  18.   go(#loop)
  19. end
  20.